home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / unix / lnxap1c.zip / MAKETAG < prev    next >
Text File  |  1994-05-05  |  2KB  |  50 lines

  1. #!/bin/sh
  2. #item   ####description                                      ###on off ###
  3. rm -f /tmp/SeTnewtag # empty the return file
  4. dialog --title "SELECTING PACKAGES FOR SERIES AP (APPLICATIONS)" \
  5.        --checklist "Please select the packages you wish to install \
  6. from series AP. Use the \
  7. UP/DOWN keys to scroll through the list, and the SPACE key to select \
  8. the packages you wish to install. Recommended packages have \
  9. already been selected for you, but you may unselect them if you wish. \
  10. Press ENTER when you are \
  11. done." 22 70 11 \
  12. "english" "The International version of ispell (3.009)" "off" \
  13. "ispell" "GNU ispell 4.0 (interactive spell checker)" "off" \
  14. "jove" "Jonathan's Own Version of Emacs text editor" "off" \
  15. "man" "On-line manual pages" "on" \
  16. "manpgs" "More man pages" "on" \
  17. "termbin" "The executable files for term" "off" \
  18. "termsrc" "SOURCE code for term" "off" \
  19. "ghostscr" "GNU Ghostscript version 2.6.1" "off" \
  20. "gsfonts1" "Fonts for the Postscript interpreter" "off" \
  21. "gsfonts2" "More fonts for the Postscript interpreter" "off" \
  22. "joe" "joe text editor, version 1.0.8" "on" \
  23. "bc" "GNU bc - arbitrary precision math language" "off" \
  24. "workbone" "Workbone 0.1 text-based audio CD player" "off" \
  25. "ftape" "floppy controller tape drive support" "off" \
  26. "mt_st" "mt ported from BSD - controls tape drive" "off" \
  27. "gonzo" "Sample users gonzo, snake, and satan" "off" \
  28. "gp9600" "Changes the default modem speed" "off" \
  29. "groff" "GNU troff 1.09 document formatting system" "off" \
  30. "quota" "quota-1.32 for Linux 1.0" "off" \
  31. "sc" "The 'sc' spreadsheet" "off" \
  32. "texinfo" "GNU texinfo documentation system" "on" \
  33. "vim" "Improved vi clone" "off" \
  34. 2> /tmp/SeTpkgs
  35. if [ $? = 1 -o $? = 255 ]; then
  36.  rm -f /tmp/SeTpkgs
  37.  exit
  38. fi
  39. cat /dev/null > /tmp/SeTnewtag
  40. for PACKAGE in english ispell jove man manpgs termbin termsrc bc gonzo \
  41. gp9600 groff quota sc workbone ghostscr gsfonts1 joe gsfonts2 ftape \
  42. mt_st texinfo vim ; do
  43.  if fgrep \"$PACKAGE\" /tmp/SeTpkgs 1> /dev/null 2> /dev/null ; then
  44.   echo "$PACKAGE: ADD" >> /tmp/SeTnewtag
  45.  else
  46.   echo "$PACKAGE: SKP" >> /tmp/SeTnewtag
  47.  fi
  48. done
  49. rm -f /tmp/SeTpkgs
  50.